gulp-autoprefixer
DefinitelyTyped icon, indicating that this package has TypeScript declarations provided by the separate @types/gulp-autoprefixer package

9.0.0 • Public • Published

gulp-autoprefixer

Prefix CSS with Autoprefixer

Issues with the output should be reported on the Autoprefixer issue tracker.

Install

npm install --save-dev gulp-autoprefixer

Usage

import gulp from 'gulp';
import autoprefixer from 'gulp-autoprefixer';

export default () => (
	gulp.src('src/app.css')
		.pipe(autoprefixer({
			cascade: false
		}))
		.pipe(gulp.dest('dist'))
);

API

autoprefixer(options?)

options

Type: object

See the Autoprefixer options.

Source Maps

Use gulp-sourcemaps like this:

import gulp from 'gulp';
import sourcemaps from 'gulp-sourcemaps';
import concat from 'gulp-concat';
import autoprefixer from 'gulp-autoprefixer';

export default () => (
	gulp.src('src/**/*.css')
		.pipe(sourcemaps.init())
		.pipe(autoprefixer())
		.pipe(concat('all.css'))
		.pipe(sourcemaps.write('.'))
		.pipe(gulp.dest('dist'))
);

Tip

If you use other PostCSS based tools, like cssnano, you may want to run them together using gulp-postcss instead of gulp-autoprefixer. It will be faster, as the CSS is parsed only once for all PostCSS based tools, including Autoprefixer.

Versions

Current Tags

VersionDownloads (Last 7 Days)Tag
9.0.018,812latest

Version History

VersionDownloads (Last 7 Days)Published
9.0.018,812
8.0.064,809
7.0.123,785
7.0.0321
6.1.017,358
6.0.04,172
5.0.08,490
4.1.012,144
4.0.01,238
3.1.129,625
3.1.01,056
3.0.22,413
3.0.119
3.0.00
2.3.16,677
2.3.02
2.2.019
2.1.0796
2.0.0842
1.0.1332
1.0.00
0.0.1078
0.0.91
0.0.8453
0.0.7258
0.0.6136
0.0.50
0.0.40
0.0.30
0.0.20
0.0.10

Package Sidebar

Install

npm i gulp-autoprefixer

Weekly Downloads

193,836

Version

9.0.0

License

MIT

Unpacked Size

4.64 kB

Total Files

4

Last publish

Collaborators

  • sindresorhus